home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python16.lha / Python-1.6 / Lib / Python1.6 / distutils / __init__.py next >
Encoding:
Python Source  |  2000-08-15  |  268 b   |  14 lines

  1. """distutils
  2.  
  3. The main package for the Python Module Distribtion Utilities.  Normally
  4. used from a setup script as
  5.  
  6.    from distutils.core import setup
  7.  
  8.    setup (...)
  9. """
  10.  
  11. __revision__ = "$Id: __init__.py,v 1.10 2000/08/15 13:14:27 gward Exp $"
  12.  
  13. __version__ = "0.9.1"
  14.